home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / lisp / kcl / akcl / akcl1615.lha / c / bcmp.c next >
C/C++ Source or Header  |  1989-04-25  |  123b  |  12 lines

  1. int bcmp(s1,s2,n)
  2. char *s1,*s2;
  3. int n;
  4. {     while (n-- > 0)
  5.     {if (*s1++ != *s2++)
  6.      return 1;}
  7.       return 0;
  8.     }
  9.  
  10.  
  11.   
  12.